home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / rsxwdk2s.zip / RSXWDK / LIBSRC / SOUND / MAKEFILE next >
Text File  |  1994-12-22  |  404b  |  30 lines

  1. CC = gcc.exe
  2. CFLAGS = -Wall -O2
  3.  
  4. ODIR=\rsxwdk\libsrc\bldall
  5. VPATH=.;$(ODIR)
  6.  
  7. .c.o:
  8.     $(CC) -c $(CFLAGS) -o $(ODIR)\$*.o $<
  9.  
  10. SOUND = \
  11.     sound001.o \
  12.     sound002.o \
  13.     sound003.o \
  14.     sound004.o \
  15.     sound005.o \
  16.     sound006.o \
  17.     sound007.o \
  18.     sound008.o \
  19.     sound009.o \
  20.     sound010.o \
  21.     sound011.o \
  22.     sound012.o \
  23.     sound013.o \
  24.     sound014.o \
  25.     sound015.o \
  26.     sound016.o \
  27.  
  28.  
  29. sound: $(SOUND)
  30.